home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Tools / Win95 Secrets / SETUP.Z / WIN32WLK.H < prev    next >
Encoding:
C/C++ Source or Header  |  1995-07-19  |  706 b   |  26 lines

  1. //==================================
  2. // WIN32WLK - Matt Pietrek 1995
  3. // FILE: WIN32WLK.H
  4. //==================================
  5. #define IDC_GROUPBOX1       101
  6. #define IDC_RB_PROCESSES    102
  7. #define IDC_RB_THREADS      103
  8. #define IDC_RB_MODULES      104
  9. #define IDC_LB_MAIN_LIST    105
  10. #define IDC_LB_DETAILS      106
  11. #define IDC_GROUPBOX2       108
  12. #define IDC_DETAILS_TYPE    109
  13.  
  14. #define LB_ITEM_PROCESS             1
  15. #define LB_ITEM_THREAD              2
  16. #define LB_ITEM_HMODULE             3
  17. #define LB_ITEM_HANDLE_TABLE        4
  18. #define LB_ITEM_MODREF_LIST         5
  19. #define LB_ITEM_TIB                 6
  20.  
  21. typedef struct
  22. {
  23.     DWORD   value;
  24.     LPSTR   name;
  25. } DWORD_FLAGS;
  26.